home *** CD-ROM | disk | FTP | other *** search
/ Planet Source Code Jumbo …e CD Visual Basic 1 to 7 / 1_2002.ISO / Data / Zips / Graphical 187284232001.psc / Form2.frm (.txt) < prev    next >
Encoding:
Visual Basic Form  |  2001-04-23  |  2.9 KB  |  87 lines

  1. VERSION 5.00
  2. Begin VB.Form Form2 
  3.    Caption         =   "About Calculator"
  4.    ClientHeight    =   1275
  5.    ClientLeft      =   60
  6.    ClientTop       =   345
  7.    ClientWidth     =   5445
  8.    Icon            =   "Form2.frx":0000
  9.    LinkTopic       =   "Form2"
  10.    ScaleHeight     =   1275
  11.    ScaleWidth      =   5445
  12.    StartUpPosition =   2  'CenterScreen
  13.    Begin VB.CommandButton Command4 
  14.       Caption         =   "&Feedback"
  15.       Height          =   375
  16.       Left            =   3960
  17.       TabIndex        =   4
  18.       Top             =   480
  19.       Width           =   1215
  20.    End
  21.    Begin VB.CommandButton Command3 
  22.       Caption         =   "&Fax"
  23.       Height          =   375
  24.       Left            =   2640
  25.       TabIndex        =   3
  26.       Top             =   840
  27.       Width           =   1215
  28.    End
  29.    Begin VB.CommandButton Command2 
  30.       Caption         =   "&E-Mail"
  31.       Height          =   375
  32.       Left            =   1320
  33.       TabIndex        =   2
  34.       Top             =   840
  35.       Width           =   1215
  36.    End
  37.    Begin VB.CommandButton Command1 
  38.       Caption         =   "&Ok"
  39.       Height          =   375
  40.       Left            =   0
  41.       TabIndex        =   1
  42.       Top             =   840
  43.       Width           =   1215
  44.    End
  45.    Begin VB.Label Label2 
  46.       Caption         =   "Many thanks to: Chris Seelbach"
  47.       Height          =   495
  48.       Left            =   0
  49.       TabIndex        =   5
  50.       Top             =   600
  51.       Width           =   3495
  52.    End
  53.    Begin VB.Label Label1 
  54.       Caption         =   "Calculator 1.4 - by Robin McKay"
  55.       BeginProperty Font 
  56.          Name            =   "Comic Sans MS"
  57.          Size            =   12
  58.          Charset         =   0
  59.          Weight          =   400
  60.          Underline       =   0   'False
  61.          Italic          =   0   'False
  62.          Strikethrough   =   0   'False
  63.       EndProperty
  64.       Height          =   495
  65.       Left            =   0
  66.       TabIndex        =   0
  67.       Top             =   120
  68.       Width           =   3975
  69.    End
  70. Attribute VB_Name = "Form2"
  71. Attribute VB_GlobalNameSpace = False
  72. Attribute VB_Creatable = False
  73. Attribute VB_PredeclaredId = True
  74. Attribute VB_Exposed = False
  75. Private Sub Command1_Click()
  76. Unload Me
  77. End Sub
  78. Private Sub Command2_Click()
  79. Shell ("start mailto:ian@imckay.fsnet.co.uk")
  80. End Sub
  81. Private Sub Command3_Click()
  82. MsgBox "My fax number is: 0870-136-4618"
  83. End Sub
  84. Private Sub Command4_Click()
  85. MsgBox "Any feedback you have is greatly appreciated. Please leave comments at the Planet Source Code website. Thank you for using Calculator 1.2." + vbCrLf + "Division By Zero bug has been fixed. Thank you to Chris Selbach for pointing that one out. Now when you divide by zero, you should see a message saying division by zero is not possible.", vbInformation, "A big thank you"
  86. End Sub
  87.